home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00276_Script_ControlPanelLoc < prev    next >
Text File  |  1999-02-25  |  772b  |  26 lines

  1. property whichSprite
  2.  
  3. on enterFrame me
  4.   if the visibility of sprite the spriteNum of me = FALSE then
  5.     set the visibility of sprite whichSprite = FALSE
  6.   else
  7.     set the visibility of sprite whichSprite = TRUE
  8.     set the loch of sprite whichSprite = the right of sprite the spriteNum of me + (the width of sprite whichSprite / 2)  * 1.5
  9.     set the locv of sprite whichSprite = the top of sprite the spriteNum of me + (the height of sprite whichSprite  / 2)
  10.   end if
  11.   
  12.   updateStage
  13. end
  14.  
  15.  
  16. on getPropertyDescriptionList
  17.   
  18.   set p_list = [ ¼
  19.              whichSprite : [ #comment:   " The Loc of whichSprite:", ¼
  20.                                #format:   #integer, ¼
  21.                               #default:    1 ] ]
  22.   
  23.   return p_list
  24.   
  25. end
  26.